local part = Instance.new("Part") part.Parent = ServerStorage part.Color = Color3.fromRGB(math.random(0, 255), math.random(0, 255), math.random(0, 255)) part.Size = Vector3.new(1, 1, 1) local partcount = 0 while partcount < 100 do local cpart = part:Clone() cpart.Position = Vector3.new(math.random(0, 50), 100, math.random(0, 50)) cpart.Parent = workspace end part:Destroy()